home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2005 January
/
CHIP_CD_2005-01.iso
/
service
/
winamp
/
files
/
winamp505_strata.exe
/
$R0
/
Winamp Modern
/
pltime.m
< prev
next >
Wrap
Text File
|
2004-07-01
|
1KB
|
58 lines
#include <lib/std.mi>
#include "attribs.m"
Global Layer TimeBG,TimeDisplay;
Global Text PLTime;
Global Group frameGroup;
Global Text SongTicker;
Global Timer callback;
function setSongtickerScrolling();
System.onScriptLoaded() {
initAttribs();
frameGroup = getScriptGroup();
TimeBG = frameGroup.findobject("player.pl.time.left");
TimeDisplay = frameGroup.findobject("player.pl.time.display.left");
PLTime = frameGroup.findobject("PLTime");
callback = new Timer; callback.setDelay(1); callback.start();
}
callback.onTimer() {
Container c = getContainer("pledit");
if (c) {
Layout l = c.getLayout("shade");
if (l) {
SongTicker = l.findObject("PESongticker");
}
}
setSongtickerScrolling();
}
frameGroup.onResize(int x, int y, int w, int h) {
if (w>394) {
TimeBG.show();
TimeDisplay.show();
PLTime.setXMLParam("x","-215");
PLTime.setXMLParam("w","90");
} else {
TimeBG.hide();
TimeDisplay.hide();
PLTime.setXMLParam("x","-180");
PLTime.setXMLParam("w","55");
}
}
songticker_scrolling_enabled_attrib.onDataChanged() {
setSongtickerScrolling();
}
setSongtickerScrolling() {
if (!SongTicker) return;
if (songticker_scrolling_enabled_attrib.getData()=="1") {
SongTicker.setXMLParam("ticker","1");
} else {
SongTicker.setXMLParam("ticker","0");
}
}